page.jsx 458 B

123456789101112131415161718
  1. import PlaceholderPage from "@/components/placeholders/PlaceholderPage";
  2. /**
  3. * /:branch/:year/:month
  4. *
  5. * Next.js 15+ treats `params` as an async value (Promise) for dynamic routes.
  6. */
  7. export default async function BranchYearMonthPage({ params }) {
  8. const resolvedParams = await params;
  9. return (
  10. <PlaceholderPage
  11. title="Month"
  12. description="Month placeholder (future: days overview / explorer drill-down)."
  13. params={resolvedParams}
  14. />
  15. );
  16. }